library(tidyverse)
library(DT)
library(plotly)
iris_graph <- ggplot(iris,
aes(x = Petal.Width,
y = Petal.Length)) +
geom_point(aes(size = Sepal.Width, color = Species)) +
labs(x = "Petal Width (cm)",
y = "Petal Length (cm)")
ggplotly(iris_graph)
datatable(msleep)